home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / ALLOC / CALLOC.C next >
C/C++ Source or Header  |  1996-07-05  |  214b  |  12 lines

  1. #include <stdlib.h>
  2. #include <string.h>
  3.  
  4. void *calloc(size_t numelms, size_t elmsize)
  5. {
  6.     unsigned size = numelms * elmsize;
  7.     void *pos;
  8.     pos = malloc(size);
  9.     if (pos)
  10.         memset(pos,0,size);
  11.     return pos;
  12. }